03. Introduction

L7 01 Introduction V3

RecyclerView

What advantages does RecyclerView have for Android apps?

SOLUTION:
  • Efficient display of large list.
  • Minimizing refreshes when an item is updated, deleted, or added to the list.
  • Reusing views that scroll off screen to display the next item that scrolls on screen.
  • Displaying items in a list or a grid.
  • Scrolling vertically or horizontally.
  • Allowing custom layouts when a list or a grid is not enough for the use case.